home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 1 Issue 2 / PDCD-1 - Issue 02.iso / _utilities / utilities / 001 / midiplay / h / MIDIPLAY next >
Encoding:
Text File  |  1993-01-08  |  485 b   |  32 lines

  1. /*
  2.  * File: mp_gbls.h
  3.  * SGoldthorpe  27-May-91
  4.  *
  5.  * Version 0.5 by Piet van Oostrum <piet@cs.ruu.nl>
  6.  * November 1991.
  7.  */
  8.  
  9. /*
  10.  * HEADER FILE FOR MIDIPLAY
  11.  */
  12.  
  13.  
  14. #define BYTE unsigned char
  15. #define WORD int
  16. #define LONG int
  17.  
  18.  
  19. /* COMPILER MANIFESTS */
  20. #define RELEASE         0
  21. #define VERSION         5
  22. #define DATE            "17-Nov-91"
  23.  
  24. #define BUFFER_SIZE     128*1024
  25. #define MAX_TRACKS      32
  26.  
  27. #define BOOL    int
  28. #ifndef FALSE
  29. #define FALSE   (0)
  30. #define TRUE    !FALSE
  31. #endif
  32.